/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Global Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.header {
  background-color: #fff;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.header .logo {
  width: 60px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li {
  display: inline-block;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #e63946;
}

/* Hero Section */
.hero {
  height: 50vh;
  background: #f4f4f4 url('assets/images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  padding: 10px 20px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero .btn:hover {
  background-color: #d62828;
}

/* Services Section */
.services {
  padding: 50px 20px;
  background-color: #f4f4f4;
}

.services h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #e63946;
  margin-bottom: 40px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #e63946;
}

.card p {
  padding: 0 15px 20px;
  font-size: 1rem;
  color: #ddd;
}

/* Team Section */
.team-section {
  padding: 50px 20px;
  background-color: #222;
}

.team-section h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #e63946;
  margin-bottom: 30px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-member {
  background-color: #333;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #e63946;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e63946;
}

/* Footer Section */
.footer {
  background-color: #000;
  padding: 20px 50px;
  text-align: center;
  color: #fff;
  border-top: 1px solid #333;
}

.footer p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header,
  .footer {
    padding: 20px;
  }

  .service-cards,
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .team-member {
    width: 90%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 20px 50px;
}

.header .logo {
  width: 60px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #e63946;
}

/* Hero Section */
.hero {
  height: 30vh;
  background: #111 url('assets/images/contact-hero.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #e63946;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  padding: 50px 20px;
  background-color: #111;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ddd;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e63946;
}

textarea {
  resize: none;
}

.btn {
  padding: 10px 20px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #d62828;
}

/* Footer */
.footer {
  background-color: #000;
  text-align: center;
  padding: 20px 50px;
  border-top: 1px solid #333;
}

.footer p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .contact-form {
    width: 90%;
  }
}

/* About Section */
.about-section {
  padding: 50px 20px;
  background-color: #111;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 40px;
}

.about-section p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-section .about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.about-section .about-content .about-text {
  max-width: 600px;
  text-align: left;
}

.about-section .about-content .about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.about-section .about-content .about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-section .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-section .about-content .about-text {
    text-align: center;
  }
}

/* Services Section */
.services {
  padding: 50px 20px;
  background-color: #111;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 40px;
}

.services p {
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 50px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #e63946;
}

.card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #e63946;
}

.card p {
  padding: 0 15px 20px;
  font-size: 1rem;
  color: #ddd;
}

/* Responsive Design for Service Section */
@media (max-width: 768px) {
  .services h2 {
    font-size: 2rem;
  }

  .services p {
    font-size: 1rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

/* Team Section */
.team-section {
  padding: 50px 20px;
  background-color: #222;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 40px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.team-member {
  background-color: #333;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #e63946;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e63946;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
  .team-section h2 {
    font-size: 2rem;
  }

  .team-member {
    width: 90%;
  }
}

/* Footer Section */
.footer {
  background-color: #000;
  padding: 20px 50px;
  text-align: center;
  color: #ffffff;
  border-top: 1px solid #333;
}

.footer p {
  font-size: 0.9rem;
  color: #000000
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #040404;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 20px 50px;
  border-bottom: 1px solid #ddd;
}

.header .logo img {
  width: 80px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li {
  display: inline-block;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 15px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 5px;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #040404;
  background-color: #e63946;
}

/* Main Section */
main {
  padding: 50px 20px;
}

/* Services Section */
.services-section {
  text-align: center;
  padding: 50px 20px;
}

.services-section h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.services-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.service {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.service img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.service div {
  max-width: 600px;
}

.service h2 {
  font-size: 1.8rem;
  color: #e63946;
  margin-bottom: 10px;
}

.service p {
  font-size: 1rem;
  color: #666;
}

/* Scrollable Additional Content Section */
#extra-content {
  padding: 40px 20px;
  background-color: #090909;
  text-align: center;
}

#extra-content h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 20px;
}

#extra-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: #020202;
  text-align: center;
  padding: 20px 50px;
  border-top: 1px solid #ddd;
}

.footer p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 20px;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .service {
    flex-direction: column;
    align-items: center;
  }

  .service img {
    width: 200px;
    height: 200px;
  }

  .service div {
    text-align: center;
  }

  #extra-content h2 {
    font-size: 2rem;
  }

  .services-section h1 {
    font-size: 2rem;
  }

  .services-section p {
    font-size: 1rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
}

/* Connect Us Section */
.connect-us {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
  color: #fff;
}

.connect-us h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 20px;
  font-weight: bold;
}

.connect-us p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-links .social-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}

.social-links .social-icon img {
  width: 24px;
  height: 24px;
}

.social-links .social-icon:hover {
  background-color: #e63946;
  transform: scale(1.1);
}

.app-link {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
  transition: background-color 0.3s, transform 0.3s;
}

.app-link:hover {
  background-color: #d62828;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .connect-us h2 {
    font-size: 2rem;
  }

  .connect-us p {
    font-size: 1rem;
  }

  .social-links .social-icon {
    width: 40px;
    height: 40px;
  }

  .app-link {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

